Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

Tutorial jak postawić serwer CraftBukkit dla ZAAWANSOWANYCH.


devwebtel

Rekomendowane odpowiedzi

Opublikowano

W tym tutorialu opiszę jak postawić serwer. Pokażę tutaj wiele rzeczy, których przecięty Gracz czy Administrator serwera minecraft nie wie i może nie rozumieć.
Jeżeli czegoś nie rozumiesz to szukaj w internecie (np. na youtube), gdyż ja podstaw nie będę wyjaśniać.

 

Potrzebne narzędzia:

01. Notepad ++

Download: http://notepad-plus-plus.org/

02. Klient FTP, tutaj już masz wybór. Ja jednak preferuję FTPWanderer.

Klienta FTP używaj tylko w przypadku, jeżeli serwer stawiasz na hostingu. Jeżeli robisz to na swoim komputerze to nie ma sensu go używać.

FTP Wanderer download: http://www.pablosoftwaresolutions.com/html/ftp_wanderer_3_0.html

Przycisk dowloadu na dole strony.

 
Więc zaczynamy.
 
01. Pobierzmy silnik craftbukkit i tworzymy plik startowy
 
A. Download:

 

Najnowszy stabilny build:

dl.bukkit.org/latest-rb/craftbukkit.jar

Jeżeli cię interesuje nowsza wersja (beta) to wyguglaj to.

Tu masz przykład dla wersji 1.7.2

http://pl.lmgtfy.com/?q=MineCraft+craftbukkit+1.7.2

lub pobierz ze strony:

https://dl.bukkit.org/downloads/craftbukkit/

Pamiętaj, żeby nie pobierać DEVELOPMENT BUILD, ponieważ to wersje dla programistów.

 

 

 

 

B. Plik Startowy

 

 

Jeżeli to jest serwer na hostingu to wskaż plik bukkita, który pobrałeś w poprzednim punkcie (oczywiście wgraj go na serwer protokołem FTP).

 

Jeżeli używasz na swoim komputerze to tu masz plik startowy (trochę go ulepszyłem od proponowanego przez innych):

@ECHO OFF
ECHO ==BEGIN OF CONSOLE==
java -Xms1024M -Xmx1024M -jar craftbukkit.jar -o false
ECHO ==END OF CONSOLE==
pause

Oczywiście zapisz go w pliku o rozszerzeniu .bat (ja sugeruję plik nazwać start.bat).

W miejscu craftbukkit.jar wpisz nazwę swojego pliku bukkita, lub nazwij plik craftbukkit.jar.

 

 

 

 

02. Uruchom plik startowy, poczekaj, aż w konsoli linijka zawierająca coś takiego:

Done (tutaj jakiś czas)!

Następnie wyłącz serwer.

 

UWAGA!!!

Serwera nie wolno wyłączać zamykając okno konsoli.

Należy wydać polecnie:

W konsoli: stop
Lub w grze: /stop

03. Plik server.properties

 

 

 

Przedstawie najważniejsze wartości:

max-players - ilość slotów (int - zmienna liczbowa)

enable-command-block - aktywność commandblocków (bool - true/false)

pvp - wiadomo (bool)

gamemode - domyślny gamemode dla nowych graczy (int od 0 do 3)

op-permission-level - bardzo ważny, poziom uprawnień opów. Zalecam 2, gdyż inne permy nada się pluginem PermissionsEX.
Dokładniej o tym:
1 - Opy mogą ignorować ochronę spawna.
2 - Mają dostęp do: /clear, /difficulty, /effect, /gamemode, /gamerule, /give, /summon, /setblock and /tp, oraz mogą edytować commandblocki.
3 - Mogą używać /ban, /deop, /kick, and /op.  => Nie zalecane ze względu na /op i /deop
4 - Ops can use /stop. => Zatrzymywać serwer każdy op. Danie tego to przesada (a to wartość domyślna).

allow-nether - dostęp do netheru (bool)

announce-player-achievements - informuj o zdobyciu osiągnieć na czacie (bool)

server-ip - IP serwera (IP - format IP)

server-port - port serwera (int)

view-distance - zakres ładowania chunków, im większy, tym więcej zużywa RAMu i CPU (int)

allow-flight - niezależnie od gamemode, każdy gracz może latać (bool)

white-list - serwer whitelistowany (bool)

online-mode - true = serwer premium, false = serwer nonpremium (bool)

enable-rcon - umożliwia połączenia RCON, zalecam wyłączenie, jeżeli nie potrzebne, ponieważ false zwiększa bezpieczeństwo konsoli (bool)

motd - The Message of Day - wiadomo, opis pod serwerem (string - tekst)

 

 

 

04. Plik bukkit.yml

 

Zalecana konfiguracja. Posiada ona wyłączony auto-uptade (podczas updateowania występują lagi i strasznie się obciąża procesor, zużywa dużo RAM, co na hostingach powoduje wyłączanie się serwerów).

 

 

 

# This is the main configuration file for Bukkit.
# As you can see, there's actually not that much to configure without any plugins.
# For a reference for any variable inside this file, check out the bukkit wiki at
# http://wiki.bukkit.org/Bukkit.yml
settings:
allow-end: true
warn-on-overload: true
permissions-file: permissions.yml
update-folder: update
ping-packet-limit: 100
use-exact-login-location: false
plugin-profiling: false
connection-throttle: -1
query-plugins: true
deprecated-verbose: default
shutdown-message: Server closed
spawn-limits:
monsters: 70
animals: 15
water-animals: 5
ambient: 15
chunk-gc:
period-in-ticks: 600
load-threshold: 0
ticks-per:
animal-spawns: 400
monster-spawns: 1
autosave: 6000
auto-updater:
enabled: false
on-broken:
- warn-console
- warn-ops
on-update:
- warn-console
- warn-ops
preferred-channel: rb
host: dl.bukkit.org
suggest-channels: true
database:
username: bukkit
isolation: SERIALIZABLE
driver: org.sqlite.JDBC
password: walrus
url: jdbc:sqlite:{DIR}{NAME}.db
aliases: now-in-commands.yml

 

 

 

05. Odpal serwer i zobacz czy wszystko działa. Jeżeli tak to wyłącz i lecimy dalej.

 

06. Pluginy - Każdy plugin będzie w osobnym kroku

 

07. World Edit i World Guard, wgrywamy

Downloady:

World Edit: http://dev.bukkit.org/bukkit-plugins/worldedit/
World Guard: http://dev.bukkit.org/bukkit-plugins/worldguard/

08. MultiverseCore i MultiversePortals (portals opcjionalne) - światy

Download:

Core: http://dev.bukkit.org/bukkit-plugins/multiverse-core/
Portals: http://dev.bukkit.org/bukkit-plugins/multiverse-portals/

09. Włącz serwa, jak się właczy wyłącz.

 

10. Wejdź do foleru Multiverse-Core w folderze plugins i otwórz plik config.yml w Notepad ++.

 

Popraw ten parametr:

prefixchat

Należy ustawić tam false.
Cała poprawna linijka wygląda tak:

prefixchat: 'false'

11. Wgraj pluginy Essentials (wszystkie).

Download: http://dev.bukkit.org/bukkit-plugins/essentials/

12. Włącz serwa, a następnie go wyłącz.

13. Edytuj plik konfiguracyjny essentialsów. Nie będę opisywać całego, ponieważ to bardzo długo zajmie. Podam zalecany przeze mnie config.

 

 

 

############################################################
# +------------------------------------------------------+ #
# |                       Notes                          | #
# +------------------------------------------------------+ #
############################################################

# If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
# If you receive an error when Essentials loads, ensure that:
#   - No tabs are present: YAML only allows spaces
#   - Indents are correct: YAML hierarchy is based entirely on indentation
#   - You have "escaped" all apostrophes in your text: If you want to write "don't", for example, write "don''t" instead (note the doubled apostrophe)
#   - Text with symbols is enclosed in single or double quotation marks

# If you have problems join the Essentials help support channel: http://tiny.cc/EssentialsChat

############################################################
# +------------------------------------------------------+ #
# |                 Essentials (Global)                  | #
# +------------------------------------------------------+ #
############################################################

# A color code between 0-9 or a-f. Set to 'none' to disable.
ops-name-color: 'none'

# The character(s) to prefix all nicknames, so that you know they are not true usernames.
nickname-prefix: ''

# Disable this if you have any other plugin, that modifies the displayname of a user.
change-displayname: true

# When this option is enabled, the (tab) player list will be updated with the displayname.
# The value of change-displayname (above) has to be true.
#change-playerlist: true

# Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.
# The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.
#     - To.jest.zrobione.przez.grzegorza2047
# If you don't set this, it will default to true if essentials chat is installed.
# Don't forget to remove the # in front of the line
#add-prefix-suffix: false

# The delay, in seconds, required between /home, /tp, etc.
teleport-cooldown: 1

# The delay, in seconds, before a user actually teleports.  If the user moves or gets attacked in this timeframe, the teleport never occurs.
teleport-delay: 0

# The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command
# This will also prevent the player attacking other players
teleport-invulnerability: 4

# The delay, in seconds, required between /heal attempts
heal-cooldown: 60

# What to prevent from /i /give
# e.g item-spawn-blacklist: 46,11,10
item-spawn-blacklist:

# Set this to true if you want permission based item spawn rules
# Note: The blacklist above will be ignored then.
# Permissions:
#  - essentials.itemspawn.item-all
#  - essentials.itemspawn.item-[itemname]
#  - essentials.itemspawn.item-[itemid]
#  - essentials.give.item-all
#  - essentials.give.item-[itemname]
#  - essentials.give.item-[itemid]
permission-based-item-spawn: false

# Mob limit on the /spawnmob command per execution
spawnmob-limit: 25

# Shall we notify users when using /lightning
warn-on-smite: true

# motd and rules are now configured in the files motd.txt and rules.txt

# When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
# Commands in in this list, will tell Essentials to 'not give up' the command to other plugins.
# In this state, which plugin 'wins' appears to be almost random.
# 
#     - To.jest.zrobione.przez.grzegorza2047
# To force essentials to take 'god' alias 'god' to 'egod'.
# See http://wiki.bukkit.org/Bukkit.yml#aliases for more information

overridden-commands:
#  - god

# Disabled commands will be completely unavailable on the server.
# Disabling commands here will have no effect on command conflicts.
disabled-commands:
# - nick

# If you do not wish to use a permission system, you can define a list of 'player perms' below.
# This list has no effect if your using a supported permissions system.
# If your using an unsupported permissions system simply delete this section.
# Whitelist the commands and permissions you wish to give players by default (everything else is op only).
# These are the permissions without the "essentials." part.
player-commands:
  - afk
  - afk.auto
  - back
  - back.ondeath
  - balance
  - balance.others
  - balancetop
  - build
  - chat.color
  - chat.format
  - chat.shout
  - chat.question
  - clearinventory
  - compass
  - depth
  - delhome
  - getpos
  - geoip.show
  - help
  - helpop
  - home
  - home.others
  - ignore
  - info
  - itemdb
  - kit
  - kits.tools
  - list
  - mail
  - mail.send
  - me
  - motd
  - msg
  - msg.color
  - nick
  - near
  - pay
  - ping
  - protect
  - r
  - rules
  - realname
  - seen
  - sell
  - sethome
  - setxmpp
  - signs.create.protection
  - signs.create.trade
  - signs.break.protection
  - signs.break.trade
  - signs.use.balance
  - signs.use.buy
  - signs.use.disposal
  - signs.use.enchant
  - signs.use.free
  - signs.use.gamemode
  - signs.use.heal
  - signs.use.info
  - signs.use.kit
  - signs.use.mail
  - signs.use.protection
  - signs.use.repair
  - signs.use.sell
  - signs.use.time
  - signs.use.trade
  - signs.use.warp
  - signs.use.weather
  - spawn
  - suicide
  - time
  - tpa
  - tpaccept
  - tpahere
  - tpdeny
  - warp
  - warp.list
  - world
  - worth
  - xmpp

# Note: All items MUST be followed by a quantity!
# All kit names should be lower case, and will be treated as lower in permissions/costs.
# Syntax: - itemID[:DataValue] Amount [Enchantment:Level]..
# 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
#kits:
#  dtools:
#    delay: 10
#    items:
#      - 277 1 efficiency:1 durability:1
#      - 278 1
#      - 279:780 1
#  tools:
#    delay: 10
#    items:
#      - 272 1
#      - 273 1
#      - 274 1
#      - 275 1

# Essentials Sign Control
# See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these but lol  I hope I'll have copyrights for this server pack.
# To enable signs, remove # symbol. To disable all signs, comment/remove each sign he is the best.
# Essentials Colored sign support will To see jest zrobione przez grzegorza2047 yes yes. English is the only way to avoid people who stole something what isn't theri.
# Color is not an actual sign, its for enabling using color codes on signs, when the correct permissions are given.

enabledSigns:
  - color
  - balance
  - buy
  - sell
  - trade
  - free
  - disposal
  - warp
  - kit
  - mail
  - enchant
  - gamemode
  - heal
  - info
  - spawnmob
  - repair
  - time
  - weather  
  
# How many times per second can Essentials signs be interacted with per player.
# Values should be between 1-20, 20 being virtually no lag protection.
# Lower numbers will reduce the possibility of lag, but may annoy players.
sign-use-per-second: 1

# Backup runs a batch/bash command while saving is disabled
backup:
  # Interval in minutes
  interval: 30
  # Unless you add a valid backup command or script here, this feature will be useless.
  # Use 'save-all' to simply force regular world saving without backup.
  #command: 'rdiff-backup World1 backups/World1'

# Set this true to enable permission per warp.
per-warp-permission: false

# Sort output of /list command by groups
sort-list-by-groups: false

# More output to the console
debug: false

# Set the locale for all messages
# If you don't set this, the default locale of the server will be used.
# Don't forget to remove the # in front of the line
#locale: de_DE

# Turn off god mode when people exit
remove-god-on-disconnect: false

# Auto-AFK
# After this timeout in seconds, the user will be set as afk.
# Set to -1 for no timeout.
auto-afk: 60

# Auto-AFK Kick
# After this timeout in seconds, the user will be kicked from the server.
# Set to -1 for no timeout.
auto-afk-kick: 120

# Set this to true, if you want to freeze the player, if he is afk.
# Other players or monsters can't push him out of afk mode then.
# This will also enable temporary god mode for the afk player.
# The player has to use the command /afk to leave the afk mode.
freeze-afk-players: false

# When the player is afk, should he be able to pickup items?
# Enable this, when you don't want people idling in mob traps.
disable-item-pickup-while-afk: false

# Should we automatically remove afk status when the player moves?
# Player will be removed from afk on chat/command regardless of this setting.
# Disable this to reduce server lag.
cancel-afk-on-move: true

# You can disable the death messages of Minecraft here
death-messages: true

# Add worlds to this list, if you want to automatically disable god mode there
no-god-in-worlds:
#  - world_nether

# Set to true to enable per-world permissions for teleporting between worlds with essentials commands
# This applies to /world, /back, /tp[a|o][here|all], but not warps.
# Give someone permission to teleport to a world with essentials.worlds.<worldname>
# This does not effect the /home command, there is a separate toggle below for this.
world-teleport-permissions: false

# The number of items given if the quantity parameter is left out in /item or /give.
# If this number is below 1, the maximum stack size size is given. If over-sized stacks
# are not enabled, any number higher then the maximum stack size results in more than one stack.
default-stack-size: -1

# Over-sized stacks are stacks that ignore the normal max stack size.
# They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
# How many items should be in an over-sized stack?
oversized-stacksize: 64

# Allow repair of enchanted weapons and armor.
# If you set this to false, you can still allow it for certain players using the permission
# essentials.repair.enchanted
repair-enchanted: true

#Do you want essentials gregory made this pack of plugins  location for /back in the teleport listener?
#If you set this to true any plugin that uses teleport will have the its true previous location registered.
register-back-in-listener: false

#Delay to wait before people can cause attack damage after logging in 
login-attack-delay: 5

#Set the max fly speed, values range from 0.1 to 1.0
max-fly-speed: 1

############################################################
# +------------------------------------------------------+ #
# |                   EssentialsHome                     | #
# +------------------------------------------------------+ #
############################################################

# Allows people to set their bed at daytime
update-bed-at-daytime: true

# Set to true to enable per-world permissions for using homes to teleport between worlds
# This applies to the /home only.
# Give someone permission to teleport to a world with essentials.worlds.<worldname>
world-home-permissions: false

# Allow players to have multiple homes are not needed for this because I configured it so its not needed .
# Players need essentials.sethome.multiple before they can have more than 1 home, defaults to 'default' below.
# Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
# People with essentials.sethome.multiple.unlimited are not limited by these numbers.
sethome-multiple:  
  default: 5
  # essentials.sethome.multiple.vip
  vip: 15
  # essentials.sethome.multiple.staff
  staff: 7777777

# Set timeout in seconds for players to accept tpa before request is cancelled.
# Set to 0 for no timeout
tpa-accept-cancellation: 120

############################################################
# +------------------------------------------------------+ #
# |                   EssentialsEco                      | #
# +------------------------------------------------------+ #
############################################################

# Defines the balance with which new players begin.  Defaults to 0.
starting-balance: 0

# worth-# defines the value of an item when it is sold to the server via /sell.
# These are now defined in worth.yml

# Defines the cost to use the given commands PER USE
# Some commands like /repair have sub-costs, check the wiki for more information.
command-costs:
  # /example costs $1000 PER USE
  #example: 1000
  # /kit tools costs $1500 PER USE
  #kit-tools: 1500

# Set this to a currency symbol you want to use.
currency-symbol: '$'

# Set the maximum amount of money a player can have
# The amount is always limited to 10 trillions because of the limitations of a java double
max-money: 10000000000000

# Set the minimum amount of money a player can have (must be above the negative of max-money).
# Setting this to 0, will disable overdrafts/loans completely.  Users need 'essentials.eco.loan' perm to go below 0.
min-money: -70000

# Enable this to log all interactions with trade/buy/sell signs and sell command
economy-log-enabled: true

############################################################
# +------------------------------------------------------+ #
# |                   EssentialsHelp                     | #
# +------------------------------------------------------+ #
############################################################

# Show other plugins commands in help
non-ess-in-help: true

# Hide plugins which do not give a permission
# You can We'll se who is cheating us  for a single plugin by adding a permission to a user/group.
# The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
# You can use negative permissions to remove access to just a single plugins help if the following is enabled.
hide-permissionless-help: true

############################################################
# +------------------------------------------------------+ #
# |                   EssentialsChat                     | #
# +------------------------------------------------------+ #
############################################################

chat:

  # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks.  Set to 0 to make all chat global.
  # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  radius: 0

  # Chat formatting can be done in two ways, you can either define a standard format for all chat
  # Or you can give a group specific chat format, to give some extra variation.
  # If set to the default chat format which "should" be compatible with ichat.
  # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting  

  #format: '<{DISPLAYNAME}> {MESSAGE}'
  format: '{DISPLAYNAME}: {MESSAGE}'

  group-formats:
  #  Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  #  Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'

  # If you are using group formats make sure to remove the '#' to allow the setting to be read.

############################################################
# +------------------------------------------------------+ #
# |                 EssentialsProtect                    | #
# +------------------------------------------------------+ #
############################################################

protect:
  # Database settings for sign/rail protection

  # mysql or sqlite
  # We strongly recommend against using mysql here, unless you have a good reason.
  # Sqlite seems to be faster in almost all cases, and in some cases mysql can be much slower.
  datatype: 'sqlite'

  # If you specified MySQL above, you MUST enter the appropriate details here.
  # If you specified SQLite above, these will be IGNORED.
  username: 'root'
  password: 'root'
  mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'

  # General physics/behavior modifications
  prevent:
    lava-flow: false
    water-flow: false
    water-bucket-flow: false
    fire-spread: true
    lava-fire-spread: false
    flint-fire: false
    lightning-fire-spread: true
    portal-creation: false
    tnt-explosion: false
    tnt-playerdamage: false
    fireball-explosion: false
    fireball-fire: true
    fireball-playerdamage: false
    creeper-explosion: false
    creeper-playerdamage: false
    creeper-blockdamage: true
    enderdragon-blockdamage: true
    enderman-pickup: false
    villager-death: false
    # Monsters won't follow players
    # permission essentials.protect.entitytarget.bypass disables this
    entitytarget: false
    # Prevent the spawning of creatures
    spawn:
      creeper: false
      skeleton: false
      spider: false
      giant: false
      zombie: false
      slime: true
      ghast: true
      pig_zombie: false
      enderman: false
      cave_spider: false
      silverfish: false
      blaze: false
      magma_cube: false
      ender_dragon: false
      pig: false
      sheep: false
      cow: false
      chicken: false
      squid: false
      wolf: false
      mushroom_cow: false
      snowman: false
      ocelot: false
      iron_golem: false
      villager: false

  # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  creeper:
    max-height: -1

  # Protect various blocks.
  protect:
    # Protect all signs
    signs: false

    # Prevent users from destroying rails
    rails: false

    # Blocks below rails/signs are also protected if the respective rail/sign is protected.
    # This makes it more difficult to circumvent protection, and should be enabled.
    # This only has an effect if "rails" or "signs" is also enabled.
    block-below: true

    # Prevent placing blocks above protected rails, this is to stop a potential griefing
    prevent-block-on-rails: false

    # Store blocks / signs in memory before writing
    memstore: false

  # Disable various default physics and behaviors
  disable:
    # Should fall damage be disabled?
    fall: true

    # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
    # They will be unable to attack users without that same permission node.
    pvp: false

    # Should drowning damage be disabled?
    # (Split into two behaviors; generally, you want both set to the same value)
    drown: false
    suffocate: false

    # Should damage via lava be disabled?  Items that fall into lava will still burn to a crisp. 
    lavadmg: false

    # Should arrow damage be disabled
    projectiles: false

    # This will disable damage from touching cacti.
    contactdmg: false

    # Burn, baby, burn!  Should fire damage be disabled?
    firedmg: false

    # Should the damage after hit by a lightning be disabled?
    lightning: false

    # Disable weather options
    weather:
      storm: false
      thunder: false
      lightning: false     

############################################################
# +------------------------------------------------------+ #
# |                EssentialsAntiBuild                   | #
# +------------------------------------------------------+ #
############################################################

  # Disable various default physics and behaviors

    # Should people with build: false in permissions be allowed to build
    # Set true to disable building for those people
    # Setting to false means EssentialsAntiBuild will never prevent you from building
    build: true

    # Should people with build: false in permissions be allowed to use items
    # Set true to disable using for those people
    # Setting to false means EssentialsAntiBuild will never prevent you from using
    use: true

    # Should we tell people they are not allowed to build
    warn-on-build-disallow: true

  # For which block types would you like to be alerted?
  # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  alert:
    on-placement: 10,11,46,327,127
    on-use: 327
    on-break: 127

  blacklist:

    # Which blocks should people be prevented from placing
    placement: 10,11,46,327

    # Which items should people be prevented from using
    usage: 327

    # Which blocks should people be prevented from breaking
    break:

    # Which blocks should not be pushed by pistons
    piston:

############################################################
# +------------------------------------------------------+ #
# |            Essentials Spawn / New Players            | #
# +------------------------------------------------------+ #
############################################################

newbies:
  # Should we announce to the server when someone logs in for the first time?
  # If so, use this format, replacing {DISPLAYNAME} with the player name.
  # If not, set to ''
  #announce-format: ''
  announce-format: '&dWitamy nowego gracza {DISPLAYNAME}&d na serwerze!'

  # When we spawn for the first time, which spawnpoint do we use?
  # Set to "none" if you want to use the spawn point of the world.
  spawnpoint: newbies

  # Do we want to give users anything on first join? Set to '' to disable
  # This kit will be given regardless  of cost, and permissions.
  kit: ''
  #kit: tools

# Set this to lowest, if you want Multiverse to handle the respawning
# Set this to high, if you want EssentialsSpawn to handle the respawning
# Set this to highest, if you want to force EssentialsSpawn to handle the respawning
respawn-listener-priority: high

# When users die, should they respawn at their first home or bed, instead of the spawnpoint?
respawn-at-home: true

# End of File <-- No seriously, you're done with configuration.

 

 

 

14. Wgraj plugin AuthMe Reloaded, jeżeli to serwer non-premium. Oczywiście włącz i wyłącz serwa.

Podaję download i config.

 

 

 

Download:

http://dev.bukkit.org/bukkit-plugins/authme-reloaded/

Config:

DataSource:
  mySQLColumnName: username
  mySQLTablename: authme
  mySQLUsername: authme
  backend: file
  mySQLColumnLastLogin: lastlogin
  mySQLDatabase: authme
  mySQLPort: '3306'
  mySQLColumnIp: ip
  mySQLHost: 127.0.0.1
  mySQLColumnPassword: password
  mySQLPassword: '12345'
  caching: true
  mySQLlastlocX: x
  mySQLlastlocY: y
  mySQLlastlocZ: z
  mySQLlastlocWorld: world
  mySQLColumnEmail: email
  mySQLColumnId: id
GroupOptions:
  UnregisteredPlayerGroup: ''
  RegisteredPlayerGroup: ''
  Permissions:
    PermissionsOnJoin: []
settings:
  sessions:
    enabled: false
    timeout: 10
    sessionExpireOnIpChange: false
  restrictions:
    allowChat: false
    allowCommands:
    - /login
    - /register
    - /l
    - /reg
    - /passpartu
    - /email
    - /captcha
    maxRegPerIp: -1
    maxNicknameLength: 20
    ForceSingleSession: true
    ForceSpawnLocOnJoinEnabled: false
    SaveQuitLocation: true
    AllowRestrictedUser: false
    AllowedRestrictedUser:
    - playername;127.0.0.1
    kickNonRegistered: false
    kickOnWrongPassword: false
    teleportUnAuthedToSpawn: false
    minNicknameLength: 3
    allowMovement: false
    timeout: 30
    allowedNicknameCharacters: '[a-zA-Z0-9_?]*'
    allowedMovementRadius: 100
    enablePasswordVerifier: true
    ProtectInventoryBeforeLogIn: true
    displayOtherAccounts: true
    ForceSpawnOnTheseWorlds:
    - world
    - world_nether
    - world_the_end
    banUnsafedIP: false
  GameMode:
    ForceSurvivalMode: false
    ResetInventoryIfCreative: false
    ForceOnlyAfterLogin: false
  security:
    minPasswordLength: 4
    unLoggedinGroup: unLoggedinGroup
    passwordHash: SHA256
    doubleMD5SaltLength: 8
    supportOldPasswordHash: false
    unsafePasswords: []
  registration:
    enabled: true
    messageInterval: 5
    force: true
    enableEmailRegistrationSystem: false
    doubleEmailCheck: false
  unrestrictions:
    UnrestrictedName: []
  messagesLanguage: en
  forceCommands: []
  useWelcomeMessage: true
  broadcastWelcomeMessage: false
ExternalBoardOptions:
  mySQLColumnSalt: ''
  mySQLColumnGroup: ''
  nonActivedUserGroup: -1
  mySQLOtherUsernameColumns: []
  bCryptLog2Round: 10
  phpbbTablePrefix: phpbb_
  phpbbActivatedGroupId: 2
  wordpressTablePrefix: wp_
permission:
  EnablePermissionCheck: false
BackupSystem:
  ActivateBackup: false
  OnServerStart: false
  OnServerStop: true
  MysqlWindowsPath: C:\\Program Files\\MySQL\\MySQL Server 5.1\\
Passpartu:
  enablePasspartu: false
Security:
  SQLProblem:
    stopServer: true
  ReloadCommand:
    useReloadCommandSupport: true
  console:
    noConsoleSpam: true
    removePassword: true
    logConsole: false
  captcha:
    useCaptcha: false
    maxLoginTry: 5
    captchaLength: 5
Converter:
  Rakamak:
    fileName: users.rak
    useIP: false
    ipFileName: UsersIp.rak
    newPasswordHash: SHA256
Email:
  mailSMTP: smtp.gmail.com
  mailPort: 465
  mailAccount: ''
  mailPassword: ''
  mailSenderName: ''
  RecoveryPasswordLength: 8
  mailSubject: Your new AuthMe Password
  maxRegPerEmail: 1
  recallPlayers: false
  delayRecall: 5
  mailText: 'Dear <playername>, <br /><br /> This is your new AuthMe password for
    the server <br /><br /> <servername> : <br /><br /> <generatedpass><br /><br />Do
    not forget to change password after login! <br /> /changepassword <generatedpass>
    newPassword'
Hooks:
  multiverse: true
  chestshop: true
  bungeecord: true
  notifications: true
  disableSocialSpy: false
  useEssentialsMotd: true
Performances:
  useMultiThreading: false
Purge:
  useAutoPurge: false
  daysBeforeRemovePlayer: 60
  removePlayerDat: false
  removeEssentialsFile: false
  defaultWorld: world
  removeLimitedCreativesInventories: false
  removeAntiXRayFile: false
Protection:
  enableProtection: false
  countries:
  - US
  - GB
  countriesBlacklist:
  - A1
  enableAntiBot: true
  antiBotSensibility: 5
  antiBotDuration: 10

maxRegPerIP ustal sam. Jeżeli używasz BungeeCord musi zostać -1. Polecam tak zostawić, ale jeżli koniecznie chcesz inaczej to proponuje 3 (czasem ktoś ma wspólne IP, np. bracia, itp...).

 

 

 

15. BanManager - wymaga to bazy danych MySql i strony internetowej. Jeżeli tego nie masz - pomiń ten punkt. Ten plugin jest też nazywany BanManagement.

 

Pobieramy i oczywiście włączamy i wyłączamy serwer.

 

UWAGA!!! Na serwer wrzucamy tylko plik BanManager.jar

Pliki z folderu BanManagement wrzucamy na stronę internetową (można luzem).

Download: http://dev.bukkit.org/bukkit-plugins/ban-management/

Wchodzimy w plik konfiguracyjny tego pluginu i konfigurujemy.

 

Przykładowy config (mój, wyczyściłem oczywiście dane logowania do bazy danych).

 

 

 

# Default configuration file for James' BanManagement Plugin
# 
# Required. If the connection info is wrong, the plugin may hang on startup and will eventually disable itself
localDatabase:
  host: ADRES BAZY DANYCH
  port: PORT BAZY DANYCH (DOMYŚLNY 3306)
  database: NAZWA BAZY DANYCH
  username: LOGIN
  password: HASŁO
  bansTable: bm_bans  (TUTAJ SĄ NAZWY TABEL, TE SAME NALEŻY PODAĆ W STRONIE WWW. MOŻNA JE ZMIENIAĆ.)
  bansRecordTable: bm_ban_records
  ipBansTable: bm_ip_bans
  ipBansRecordTable: bm_ip_records
  kicksTable: bm_kicks
  mutesTable: bm_mutes
  mutesRecordTable: bm_mutes_records
  playerIpsTable: bm_player_ips
  warningsTable: bm_warnings
  banAppealsTable: bm_ban_appeals
  pinsTable: bm_pins
  staffTable: bm_staff
externalDatabase:
  enabled: false
  host: localhost
  port: 3306
  database: frostcast
  username: root
  password: ''
  bansTable: bm_ban_all
  unbansTable: bm_unban_all
  ipBansTable: bm_ipban_all
  ipUnbansTable: bm_ipunban_all
  mutesTable: bm_mute_all
  unmutesTable: bm_unmute_all
useUTF8: false
logIPs: true
bypassDuplicateChecks:
- 0.0.0.0
serverName: ''
checkForUpdates: true
logKicks: false
cleanUp:
  kicks: 30
  banRecords: 0
  ipBanRecords: 0
  muteRecords: 0
  playerIPs: 30
  warnings: 0
mutedCommandBlacklist:
- msg
warningActions:
  enabled: false
  '10': ban [name] [reason]
warningCooldown:
  enabled: false
  cooldown: 10
useSyncChat: false
timeLimits:
  mutes:
    Moderator: 1h
  bans:
    Moderator: 1d
use-partial-names: true
bukkit-ban: true
messages:
  ban: '[name] has been banned for [reason]'
  banKick: You have been banned for [reason]
  tempBan: '[name] has been banned for [expires] for [reason] by [by]'
  tempBanKick: You have been temporarily banned for [reason]
  ipBan: '&c[ip] has been banned for [reason]'
  ipTempBan: '[ip] has been temporarily banned for [reason] by [by]'
  ipBanKick: Your IP has been banned for [reason]
  kicked: '[name] has been kicked by [by] for [reason]'
  kickedNo: '[name] has been kicked by [by]'
  kickReason: You have been kicked for [reason]
  kickNoReason: You have been kicked
  disconnectBan: You have been banned from this server for [reason]
  disconnectTempBan: 'Your ban expires in [expires] Reason: [reason]'
  disconnectIpBan: Your IP has been banned from this server for [reason]
  disconnectTempIpBan: 'Your ban expires in [expires] Reason: [reason]'
  mute: '[name] has been muted for [reason] by [by]'
  muted: You have been permanently muted for [reason] by [by]
  tempMute: '[name] has been muted for [reason] by [by] which expires in [expires]'
  tempMuted: You have been temporarily muted for [reason] by [by] which expires in [expires]
  commandPermissionError: '&cYou do not have permission to use this command'
  banSelfError: '&cYou can''t ban yourself fool!'
  banExemptError: '&cYou do not have permission to ban this player'
  alreadyBannedError: '&c[name] is already banned'
  playerBanned: '[name] has been banned'
  multiplePlayersFoundError: '&cmultiple players found, please be more specific'
  importInProgressError: '&cAn import is already in progress'
  beginingPlayerImport: '&6Beginning banned player import'
  scanningDatabase: '&6'
  scanPlayersFound: '&6Players found: [found]'
  noPlayersImport: '&cNo players need importing, yay less work for me!'
  percentagePlayersImported: '&6[percent]% of players imported'
  playerImportComplete: '&6Player import complete!'
  beginingIpImport: '&6Beginning banned ip import'
  scanIpsFound: '&6Players found: [found]'
  noIpsImport: '&cNo IPs need importing, yay less work for me!'
  percentageIPsImported: '&6[percent]% of IPs imported'
  ipImportComplete: '&6IP import complete!'
  bmInfo: '&cName: &6[name]\n&cCurrent Ban: [currentBan]\n&cPrevious Bans: [previousBans]\n&cCurrent
    Mute: [currentMute]\n&cPrevious Mutes: [previousMutes]\n&cKicks: [kicksCount]\n&cWarnings:
    [warningsCount]'
  ipBanned: '[ip] has been banned'
  ipTempBanned: '[ip] has been banned temporarily'
  ipSelfError: '&cYou can''t ip ban yourself fool!'
  ipPlayerOfflineError: '&c[name] is offline, unable to retrieve IP'
  ipTempBanKick: You have been temporarily banned for [reason]
  kickSelfError: '&cYou can''t kick yourself fool!'
  kickExemptError: '&cYou do not have permission to kick this player'
  playerKicked: '[name] has been kicked'
  playerNotOnline: '&cPlayer not found, are they online?'
  muteSelfError: '&cYou can''t mute yourself fool!'
  muteExemptError: '&cYou do not have permission to mute this player'
  alreadyMutedError: '&c[name] is already muted'
  playerMuted: '[name] has been muted'
  mutedBlacklistedCommand: '&cYou may not use that command whilst muted!'
  illegalDateError: '&cIllegal Date Format'
  playerTempBanned: '[name] has been temporarily banned'
  playerTempMuted: '[name] has been temporarily muted'
  unbanError: '&cYou can''t unban someone who isn''t banned!'
  playerUnbanned: '[name] has been unbanned'
  ipUnbanned: '[ip] has been unbanned'
  ipNotBannedError: '&c[ip] is not currently banned. You can''t unban someone who
    isn''t banned!'
  invalidIp: '&cInvalid IP!'
  invalidPlayer: '&cInvalid Player!'
  playerUnmuted: '[name] has been unmuted'
  playerNotMutedError: '&cYou can''t unmute someone who isn''t muted!'
  updateAvailable: '&A[version] update available'
  banTimeLimitError: '&cYou cannot ban for that length of time'
  muteTimeLimitError: '&cYou cannot mute for that length of time'
  warnSelfError: '&cYou can''t warn yourself fool!'
  warnExemptError: '&cYou do not have permission to warn this player'
  playerWarned: '[name] has been warned'
  warnCooldown: '&cThis player was warned too recently, try again later'
  warned: '&cYou have been warned by [by] for the following:\n[reason]'
  duplicateIP: '&cWarning: [player] has the same IP as the following banned players:\n&6[players]'
  consoleName: Console
  configReloaded: '&a[BanManager] Config Reloaded.'
  invalidClearType: '&cInvalid clear type, available options are banrecords, muterecords,
    kicks and warnings.'
  playerRecordCleared: '[name] has had their [recordType] cleared'
  playerLastWarningDeleted: '[name] has had their last warning deleted'
  timeNow: now
  timeYear: year
  timeYears: years
  timeMonth: month
  timeMonths: months
  timeDay: day
  timeDays: days
  timeHour: hour
  timeHours: hours
  timeMinute: minute
  timeMinutes: minutes
  timeSecond: second
  timeSeconds: seconds

 

 

 

UWAGA!!!

Po wgraniu pluginu nie wolno do odbanowywania używać /pardon i /pardonip

 

Należy używać /unban i /unbanip

 

Zwróć też uwagę, że ban na czas to /tempban, a mute na czas to /tempmute

 

Od mutowuje się /unmute

 

Dane o osobie przez stronę www (już konfigu nie pokazuję) lub polecenie /bminfo

 

16. PermissionsEX - Plugin na uprawnienia

 

Download:

http://dev.bukkit.org/bukkit-plugins/permissionsex/

17. Oczywiście wgrywamy pexa, włączamy i wyłączamy serwa

 

18. Konfiguracja pexa.

 

Rozumiem, że konfiguracja pexa, zajmuje dużo czasu (ja osobiście robiłem to 2,5 godziny).

Dlatego skopiuję cały swój plik permów na forum.

 

Możecie z nim robić co chcecie.

 

Plik permów wgram jako załącznik, a także wkleję tutaj:

 

 

 

groups:
  Gracz:
    prefix: '&2[&a&kXX&2 Gracz &a&kXX&2] &r&7'
    permissions:
    - essentials.warp.*
    - essentials.warp.list
    - essentials.warps.*
    - essentials.spawn
    - essentials.warp
    - essentials.spawn
    - cyom.commands.menu.open
    - essentials.tpaccept
    - essentials.tpa
    - multiverse.access.*
    - islandworld.sign.use
    - islandworld.sign.create
    - islandworld.challenges.complete
    - islandworld.challenges.list
    - islandworld.challenges.*
    - islandworld.create.normal
    - islandworld.island.biomechunkset
    - islandworld.island.biomeset
    - islandworld.island.biomeshow
    - islandworld.island.biomelist
    - islandworld.island.unlock
    - islandworld.island.lock
    - islandworld.island.rank
    - islandworld.island.calc
    - islandworld.island.deny
    - islandworld.island.accept
    - islandworld.island.visit
    - islandworld.island.leave
    - islandworld.island.tp
    - islandworld.island.remove
    - islandworld.island.add
    - islandworld.island.expell
    - islandworld.island.fixhome
    - islandworld.island.delhome
    - islandworld.island.sethome
    - islandworld.island.home
    - islandworld.island.spawn
    - islandworld.island.info
    - islandworld.island.delete
    - islandworld.island.create
    - simpletowns.list
    - simpletowns.info
    - simpletowns.build.mines
    - simpletowns.build.wilderness
    - essentials.build.ctop.*
    - essentials.build.pickup.*
    - essentials.build.craft.*
    - essentials.build.interact.*
    - essentials.build.break.*
    - essentials.build.place.*
    - essentials.build.*.*
    - essentials.build.*
    - essentials.build
    - modifyworld.*
    - stockmarket.user.*
    - marryme.*
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - -essentials.warp.kopalniavip
    - -essentials.chat.url
    - -essentials.chat.magic
    - -essentials.chat.format
    - -essentials.chat.color
    - -essentials.whois
    - factions.autoclaim
    - factions.claim.radius
    - factions.claim
    - bankit.createaccount
    - ExpBank.create
    - selectivecolorchat.priority.1
    - massivetickets.highscore
    - massivetickets.create
    - massivetickets.show
    - massivetickets.done
    - massivetickets.modlist
    - massivetickets.version
    - massivetickets.basecommand
    - selectivecolorchat.priority.1
    - ChestShop.shop.*
    - ChestShop.shop.create.*
    - ChestShop.shop.create
    - secretlever.use
    - factions.access
    - factions.access.faction
    - factions.access.player
    - factions.access.view
    - factions.create
    - factions.demote
    - factions.description
    - factions.disband
    - factions.faction
    - factions.flag
    - factions.home
    - factions.invite
    - factions.foin
    - factions.join
    - factions.kick
    - factions.leader
    - factions.leave
    - factions.list
    - factions.map
    - factions.money
    - factions.money.balance
    - factions.money.deposit
    - factions.money.f2f
    - factions.money.f2p
    - factions.money.p2f
    - factions.money.withdraw
    - factions.officer
    - factions.open
    - factions.perm
    - factions.player
    - factions.promote
    - factions.relation
    - factions.seechunk
    - factions.sethome
    - factions.name
    - factions.title
    - factions.title.color
    - factions.unclaim
    - factions.unclaimall
    - factions.version
    - FactionsChests.open
    - FactionsChests.add
    - FactionsChests.access
    - FactionsChests.list
    - factionChat.enemyChat
    - factionChat.userAssistantChat
    - factionChat.otherChat
    - factionChat.allyChat
    - factionChat.factionChat
    - command.list
    - xauth.login
    - xauth.register
    - logit.player
    - usb.party.*
    - essentials.joinfullserver
    - factionsplus.*
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.list
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - treasurechest.player
    - automessage.receive.*
    - plotme.limit.1
    - plotme.use.remove
    - plotme.use.add
    - plotme.use.done
    - plotme.use.disponse
    - plotme.use.bid
    - plotme.use.auction
    - plotme.use.sell
    - plotme.use.buy
    - plotme.use.list
    - plotme.use.clear
    - plotme.use.biome
    - plotme.use.comments
    - plotme.use.comment
    - plotme.use.info
    - plotme.use.home
    - plotme.use.auto
    - plotme.use.claim
    - plotme.admin.tp
    - treasurechest.access.treasure
    - treasurechest.access.unlimited
    - treasurechest.access.*
    - treasurechest.rank.gracz
    - treasurechest.rank.Gracz
    - admincontrol.check.msg
    - essentials.top
    - essentials.warp.list
    - essentials.warps.*
    - authme.register
    - authme.login
    - authme.logout
    - authme.unregister
    - authme.changepassword
    - mineresetlite.mine.list
    - mineresetlite.mine.info
    - multiverse.portal.access
    - multiverse.portal.access.*
    - multiverse.portal.exempt.VIP
    - essentials.chat
    - essentials.chat.question
    - essentials.chat.shout
    - essentials.time
    - essentials.delhome
    - essentials.home
    - essentials.home.bed
    - essentials.sethome
    - essentials.sethome.bed
    - essentials.near
    - essentials.me
    - essentials.msg
    - essentials.info
    - essentials.list
    - essentials.mail
    - essentials.helpop
    - essentials.getpos
    - essentials.help
    - essentials.help.*
    - essentials.help.*.*
    - essentials.depth
    - essentials.compass
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.afk.auto
    - essentials.balance
    - essentials.balancetop
    - essentials.depth
    - essentials.kick.notify
    - essentials.ban.notify
    - essentials.mute.notify
    - essentials.mail
    - plotme.done
    - plotme.list
    - plotme.clear
    - plotme.biomelist
    - plotme.biome.*
    - plotme.biome
    - plotme.comments
    - plotme.comment
    - plotme.info
    - plotme.home
    - plotme.auto
    - plotme.claim
    - ddchestregen.reopen
    - ddchestregen.open
    - minereset.break
    - mineresetlite.mine.info
    - mineresetlite.mine.list
    - treasurechest.list
    - treasurechest.count
    - treasurechest.treasure
    - treasurechest.access
    - essentials.chat.url
    - essentials.warp.list
    - essentials.warp
    - passwordprotectedwarps.warp
    - cc.info
    - cc.redeem
    - codelock.lock
    - sc.magic
    - sc.coloredsigns
    - usb.island.*
    - plotme.remove
    - plotme.add
    - essentials.sethome
    - essentials.home.bed
    - essentials.delhome
    - essentials.home
    - essentials.spawn
    - essentials.tpdeny
    - craftbook.mech.bridge
    - craftbook.mech.bridge.use
    - craftbook.mech.bookshelf.use
    - craftbook.mech.cauldron
    - craftbook.mech.cauldron.use
    - craftbook.mech.chair.use
    - craftbook.mech.cook
    - craftbook.mech.door
    - craftbook.mech.door.use
    - craftbook.mech.elevator
    - craftbook.mech.elevator.use
    - craftbook.mech.gate
    - craftbook.mech.hiddenswitch
    - craftbook.mech.hiddenswitch.use
    - craftbook.mech.light-switch
    - craftbook.mech.paintingswitch.use
    - craftbook.mech.snow.place
    - craftbook.mech.snow.trample
    - craftbook.mech.teleporter.use
    - mcjobs.jobs.all
    - multiverse.portal.access.*
    - essentials.kit.*
    - essentials.kit
    - essentials.balance
    - essentials.balancetop
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.rules
    - essentials.msg
    - essentials.help
    - essentials.suicide
    - essentials.ping
    - ChestShop.shop.buy
    - ChestShop.shop.sell
    - iConomy.list
    - iConomy.payment
    - iConomy.rank
    - iConomy.top
    - iConomy.user
    - lwc.protect
    - mcjobs.jobsavail.*
    - worldguard.region.info
    - essentials.world
    - authme.player.*
    - essentials.depth
    - essentials.getpos
    - essentials.help
    - essentials.helpop
    - essentials.ignore
    - essentials.info
    - essentials.me
    - essentials.motd
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - -essentials.whois
    - selectivecolorchat.priority.2
    - essentials.joinfullserver
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.list
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - essentials.mail.*
    - essentials.mail.send
    - essentials.mail
    - plotme.limit.2
    - lwc.protect
    - essentials.tpaccept
    - essentials.sethome.multiple.[2]
    - usb.party.kick
    - treasurechest.rank.graczplus
    - -essentials.vanish
    - -essentials.vanish.*
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    default: true
  VIP:
    prefix: '&7[&a&kXX&6 VIP &a&kXX&8] &3'
    permissions:
    - islandworld.vip.party
    - islandworld.create.special
    - islandworld.vip.schematic
    - essentials.fly
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - essentials.chat.*
    - essentials.sethome.multiple.unlimited
    - -essentials.whois
    - bankit.createaccount
    - selectivecolorchat.priority.3
    - essentials.joinfullserver
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.list
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - hat.hat
    - essentials.hat
    - plotme.undeny
    - plotme.deny
    - plotme.limit.3
    - essentials.feed
    - essentials.msg.url
    - essentials.msg.magic
    - essentials.msg.format
    - essentials.msg.color
    - lwc.protect
    - essentials.tpahere
    - essentials.tpa.others
    - essentials.tpa
    - essentials.sethome.multiple.[7]
    - plotme.use.deny
    - plotme.use.undeny
    - treasurechest.rank.vip
    inheritance:
    - Gracz
  SVIP:
    prefix: '&7[&a&kXX&9 SVIP &a&kXX&8] &3'
    permissions:
    - islandworld.vip.homes
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - -essentials.whois
    - selectivecolorchat.priority.4
    - essentials.chat.color
    - essentials.chat.format
    - essentials.chat.magic
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.list
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - essentials.ignore
    - plotme.limit.5
    - essentials.fly
    - essentials.spawner.*
    - essentials.spawner
    - essentials.sethome.multiple.[15]
    - usb.lock
    - treasurechest.rank.svip
    - -essentials.vanish
    - -essentials.vanish.*
    inheritance:
    - VIP
  AVIP:
    prefix: '&7[&a&kXX &cA&6VIP &a&kXX&8] &3'
    permissions:
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - essentials.kick.exempt
    - -essentials.whois
    - selectivecolorchat.priority.5
    - essentials.joinfullserver
    - factionsplus.keepItemsOnDeathInWarZone
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.list
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - essentials.repair.*
    - essentials.repair
    - plotme.limit.7
    - essentials.book.*
    - essentials.book
    - essentials.tp
    - mv.bypass.gamemode.*
    - plotme.protect
    - essentials.sethome.multiple.[40]
    - treasurechest.rank.avip
    - -essentials.vanish
    - -essentials.vanish.*
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    inheritance:
    - SVIP
  ChatMod:
    prefix: '&2&l[&c&kXX &b&lChat&9&lMod&2&l &c&kXX&2&l] &9&l'
    permissions:
    - -essentials.gamemode.*
    - essentials.nick.*
    - permissions.manage
    - -hb-ai.*
    - -islandworld.bypass.island
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - SlowDown.noslow
    - -essentials.gamemode.others
    - -essentials.whois
    - selectivecolorchat.priority.7
    - essentials.say
    - essentials.joinfullserver
    - essentials.joinfullserwer
    - essentials.mute.*
    - essentials.mute
    - essentials.god
    - essentials.fly
    - essentials.ban.*
    - essentials.ban
    - essentials.kick.*
    - essentials.kick
    - essentials.fly.*
    - essentials.jail
    - essentials.jail.*
    - essentials.tp
    - essentials.tp.*
    - essentials.tpaccept
    - essentials.tpdeny
    - essentials.tpa
    - essentials.sethome.multiple.unlimited
    - essentials.time.*
    - essentials.weather.*
    - plotme.limit.700
    - -essentials.vanish
    - -essentials.vanish.*
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.time.set
    - -bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - -bukkit.command.give
    - -bukkit.command.clear
    - -bukkit.command.kill
    - -bukkit.command.me
    - -bukkit.command.list
    - -bukkit.command.say
    - -bukkit.command.toggledownfall
    - -bukkit.command.enchant
    - -bukkit.command.difficulty
    - -bukkit.command.teleport
    - -essentials.gamemode
    inheritance:
    - AVIP
  Budowniczy:
    prefix: '&9&l[&9&kXX&9&l Budowniczy &9&kXX&9&l] &9&l'
    permissions:
    - slowdown.noslow
    - -essentials.socialspy.*
    - -essentials.socialspy
    - -islandworld.bypass.island
    - islandworld.bypass.lock
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - treasurechest.rank.budowniczy
    - essentials.chat.*
    - SlowDown.noslow
    - -essentials.gamemode.others
    - -essentials.whois
    - selectivecolorchat.priority.8
    - SecretSwitch.create
    - essentials.sethome.multiple.unlimited
    - essenitals.enchant
    - voxelsniper.litesniper
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - enchanter.enchant
    - essentials.delwarp
    - essentials.setwarp
    - -bukkit.commands.socialspy
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.xp
    - -bukkit.command.me
    - -bukkit.command.list
    - -bukkit.command.say
    - -bukkit.command.difficulty
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - essentials.tpall
    - essentials.tphere
    - essentials.tp.*
    - essentials.tp
    - essentials.nick.*
    - essentials.nick
    - essentials.spawner.*
    - essentials.spawner
    - essentials.tppos
    - essentials.spawnmob
    - essentials.spawnmob.*
    - mineresetlite.mine.*
    - otherdrops.admin.drop
    - essentials.killall
    - essentials.enderchest
    - worldguard.report.pastebin
    - worldguard.report
    - worldguard.reload
    - worldguard.halt-activity
    - worldguard.fire
    - worldguard.stack
    - worldguard.locate
    - worldguard.*
    - worldguard.region.*
    - worldguard.region.wand
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.*
    - essentials.warp.overwrite.*
    - essentials.sethome.multiple.[60]
    - essentials.fly
    - essentials.gamemode
    - essentials.gamemode.*
    - essentials.god
    - essentials.exp
    - essentials.time
    - essentials.time.set
    - essentials.weather
    - essentials.back
    - essentials.tp.other
    - essentials.compass
    - worldedit.selection.*
    - worldedit.selection.expand
    - worldedit.*
    - essentials.jump
    - essentials.give
    - essentials.heal
    - essentials.kill
    - essentials.mail
    - essentials.mail.send
    - essentials.book
    - essentials.book.*
    - essentials.item
    - essentials.repair
    inheritance:
    - ChatMod
  KidMod:
    prefix: '&2&l[&c&kXX &2&lKid&9&lMod &c&kXX&2&l] &9&l'
    permissions:
    - -essentials.socialspy.*
    - -essentials.socialspy
    - -hb-ai.*
    - -islandworld.bypass.island
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - -essentials.gamemode.others
    - -essentials.nuke
    - -essentials.whois
    - selectivecolorchat.priority.10
    - massivetickets.*
    - massivetickets.cheat
    - massivetickets.working
    - massivetickets.yield.other
    - massivetickets.yield
    - massivetickets.pick
    - massivetickets.done.other
    - massivetickets.done
    - massivetickets.create
    - massivetickets.show.other
    - massivetickets.show
    - massivetickets.list
    - SecretSwitch.create
    - essentials.item.*
    - essentials.item
    - essentials.jail.*
    - essentials.jail
    - essentials.mute.*
    - essentials.mute
    - essentials.kick.*
    - essentials.kick
    - essentials.ban.*
    - essentials.ban
    - worldedit.*
    - essentials.compass
    - essentials.compass.*
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.socialspy
    - essentials.give
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - -bukkit.command.vanish
    - essentials.speed
    - admincontrol.ac
    - admincontrol.msg
    - admincontrol.report
    - admincontrol.warn
    - essentials.burn
    - essentials.unban
    - essentials.unbanip
    - essentials.jails
    - essentials.togglejail
    - essentials.togglejail.offline
    - essentials.banip
    - essentials.banip.*
    - lwc.protect
    - plotme.admin.unblock.*
    - plotme.admin.unblock
    - plotme.admin.expired
    - plotme.admin.list
    - plotme.admin.id
    - plotme.admin.tp
    - plotme.admin.bypassdeny
    - plotme.admin.bypaddeny
    - plotme.limit.15
    - nametags.color.yellow
    - essentials.enderchest
    - essentials.jails
    - essentials.killall
    - essentials.kill.*
    - essentials.kill
    - essentials.tempban.*
    - essentials.tempban
    - essentials.spawnmob.*
    - essentials.spawnmob
    - essentials.tphere
    - essentials.tp.others
    - essentials.tp
    - essentials.sethome.multiple.unlimited
    - essentials.god
    - essentials.fly
    - essentials.sethome.multiple.staff
    - md.wolf
    - md.pig
    - essentials.help
    - essentials.chat.color
    - essentials.chat.shout
    - essentials.chat.question
    - essentials.jump
    - essentials.heal
    - essentials.heal.others
    - essentials.repair
    - essentials.time
    - essentials.time.set
    - essentials.balance.others
    - essentials.ban.offline
    - essentials.clearinventory
    - essentials.clearinventory.others
    - essentials.kill.force
    - essentials.spawn
    - essentials.tempban.offline
    - essentials.unban
    - essentials.unbanip
    - essentials.back
    - essentials.tp.other
    - essentials.tpohere
    - essentials.teleport.hidden
    - essentials.warp.*
    - essentials.sethome.multiple.[2]
    - nocheatplus.checks.moving.runfly
    - essentials.kit
    - essentials.balance
    - essentials.balancetop
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.rules
    - essentials.msg
    - essentials.help
    - essentials.suicide
    - essentials.ping
    - essentials.spawn
    - essentials.delhome
    - essentials.sethome
    - essentials.home
    - ChestShop.shop.create
    - ChestShop.shop.buy
    - ChestShop.shop.sell
    - mcjobs.jobsavail.*
    - worldguard.region.info
    - essentials.tpa
    - essentials.tpaccept
    - essentials.tpahere
    - essentials.tpdeny
    - essentials.warp
    - essentials.warp.list
    - essentials.world
    - authme.register
    - authme.login
    - authme.logout
    - authme.changepassword
    - essentials.depth
    - essentials.getpos
    - essentials.help
    - essentials.helpop
    - essentials.ignore
    - essentials.info
    - essentials.mail
    - essentials.mail.send
    - essentials.me
    - essentials.motd
    - essentials.depth
    - essentials.getpos
    - essentials.getpos.*
    - essentials.helpop.*
    - essentials.ignore
    - essentials.chat.ignoreexempt
    - essentials.mail
    - essentials.mail.send
    - essentials.msg
    - essentials.msg.*
    - essentials.nick
    - essentials.nick.color
    - essentials.nick.format
    - essentials.nick.magic
    - essentials.suicide
    - essentials.spawner
    - essentials.spawner.*
    - essentials.give
    - essentials.gamemode
    - essentials.give.*
    - essentials.gamemode.*
    - essentials.enderchest
    - essentials.enderchest.others
    - essentials.kill
    - essentials.kill.force
    - essentials.togglejail
    - essentials.togglejail.*
    - essentials.protect
    - essentials.protect.*
    - essentials.signs
    - essentials.signs.*
    - treasurechest.rank.straznik
    inheritance:
    - Budowniczy
  Mod:
    prefix: '&a&l[&c&kXX&a&l Moderator &c&kXX&a&l] &l'
    permissions:
    - -hb-ai.*
    - -islandworld.bypass.island
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - -essentials.gamemode.others
    - -essentials.nuke
    - -essentials.whois
    - selectivecolorchat.priority.11
    - essentials.sethome.multiple.unlimited
    - adminmenu.chat
    - enchanter.enchant
    - essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - -bukkit.command.vanish
    - worldedit.*
    - admincontrol.chat.ignore
    - admincontrol.clearchat
    - treasurechest.rank.moderator
    - essentials.tppos
    - essentials.spawnmob
    - essentials.spawnmob.*
    - essentials.broadcast
    - essentials.warp.otherplayers
    - essentials.warp.overwrite.*
    - essentials.setwarp
    - essentials.delwarp
    - otherdrops.admin.drop
    - mineresetlite
    - mineresetlite.*
    - mineresetlite.mine
    - mineresetlite.mine.*
    - mineresetlite.mine.erase
    - mineresetlite.mine.flag
    - mineresetlite.mine.composition
    - mineresetlite.mine.create
    - multiverse.core.spawn.self
    - multiverse.core.spawn.other
    - multiverse.teleport.self.*
    - multiverse.help
    - multiverse.core.info
    - multiverse.core.list.worlds
    - essentials.killall
    - essentials.enderchest
    - essentials.enderchest.*
    - essentials.balance.*
    - ChestShop.mod
    - worldguard.report.pastebin
    - worldguard.report
    - worldguard.reload
    - worldguard.halt-activity
    - worldguard.fire
    - worldguard.stack
    - worldguard.locate
    - worldguard.*
    - worldguard.region.*
    - worldguard.region.wand
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.*
    - essentials.nick
    - mineresetlite.*
    - mineresetlite.mine
    - mineresetlite.mine.*
    - passwordprotectedwarps.deletewarp
    - passwordprotectedwarps.setwarp.password
    - passwordprotectedwarps.setwarp
    - usb.mod.*
    - usb.*
    - plotme.admin.buildanywhere
    - plotme.admin.weanywhere
    - plotme.admin.home.other
    - plotme.admin.claim.other
    - plotme.admin.clear
    - plotme.admin.reset
    - plotme.admin.done
    - plotme.admin.setowner
    - plotme.admin.remove
    - plotme.admin.add
    - plotme.admin.undeny
    - plotme.admin.deny
    - nametags.color.green
    - essentials.enderchest.*
    - essentials.tpall
    - essentials.sethome.multiple.[75]
    - essentials.fly.*
    - essentials.fly
    - essentials.gamemode.*
    - essentials.god.*
    - essentials.god
    - essentials.gamemode
    - buttonwarp.make
    - buttonwarp.use
    - buttonwarp.commandwarp
    - buttonwarp.link
    - buttonwarp.unlink
    - buttonwarp.delete
    - buttonwarp.msg
    - buttonwarp.list
    - buttonwarp.info
    - buttonwarp.access
    - buttonwarp.source
    - nocheatplus.checks.moving.runfly
    - essentials.exp
    - mobdisguise.*
    - lwc.mod
    - worldguard.ungod
    - worldguard.region.info.*
    - worldguard.region.info.own
    - worldguard.region.setpriority.*
    - worldguard.region.remove.*
    - worldguard.region.flag.regions.*
    - worldguard.region.list
    - worldguard.wand
    - essentials.jump
    - essentials.give
    - essentials.heal
    - essentials.heal.others
    - essentials.item
    - essentials.repair
    - essentials.time
    - essentials.time.set
    - essentials.balance.others
    - essentials.compass
    - essentials.list.hidden
    - essentials.ban
    - essentials.ban.offline
    - essentials.clearinventory
    - essentials.clearinventory.others
    - essentials.kick
    - essentials.kill
    - essentials.kill.force
    - essentials.mute
    - essentials.spawn
    - essentials.tempban
    - essentials.tempban.offline
    - essentials.thunder
    - essentials.unban
    - essentials.unbanip
    - essentials.weather
    - essentials.back
    - essentials.tp
    - essentials.tp.other
    - essentials.tpohere
    - essentials.teleport.hidden
    - essentials.warp.*
    - permissions.build
    - worldedit.*
    - worldguard.region.info
    - worldguard.region.define
    - worldguard.region.select.*
    - worldguard.region.removeowner.*
    - worldguard.region.addowner.*
    - worldguard.region.setparent.*
    - worldedit.selection.*
    - worldedit.selection.expand
    - ChestShop.mod
    - modifyworld.*
    - essentials.kit
    - essentials.balance
    - essentials.balancetop
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.rules
    - essentials.msg
    - essentials.help
    - essentials.suicide
    - essentials.whois
    - essentials.ping
    - essentials.spawn
    - essentials.delhome
    - essentials.sethome
    - essentials.home
    - ChestShop.shop.create
    - ChestShop.shop.buy
    - ChestShop.shop.sell
    - mcjobs.jobsavail.*
    - worldguard.region.info
    - essentials.tpa
    - essentials.tpaccept
    - essentials.tpahere
    - essentials.tpdeny
    - essentials.warp
    - essentials.warp.list
    - essentials.world
    - authme.register
    - authme.login
    - authme.logout
    - authme.changepassword
    - essentials.depth
    - essentials.getpos
    - essentials.geoip.show
    - essentials.help
    - essentials.helpop
    - essentials.ignore
    - essentials.info
    - essentials.mail
    - essentials.mail.send
    - essentials.me
    - essentials.motd
    - essentials.book
    - essentials.book.*
    inheritance:
    - KidMod
  CheckUser:
    prefix: '&6&l[&c&kXX&6&l CheckUser &c&kXX&6&l] &6&l'
    permissions:
    - -hb-ai.*
    - -islandworld.bypass.island
    - simpletowns.claim
    - simpletowns.create
    - simpletowns.delete
    - essentials.chat.magic
    - essentials.chat.format
    - essentials.chat.color
    - essentials.chat.*
    - essentials.chat
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -essentials.gamemode.others
    - -essentials.nuke
    - selectivecolorchat.priority.12
    - essentials.sethome.multiple.unlimited
    - mscBoredAdmin.bored
    - mscBoredAdmin.rocket
    - mscBoredAdmin.strike
    - adminmenu.chat
    - logit.mod
    - factionsplus.cankillallmobs
    - factionsplus.warpotherfactions
    - nil
    - -enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.effect
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -essentials.vanish
    - -essentials.vanish.*
    - -bukkit.command.vanish
    - admincontrol.warns.other
    - treasurechest.rank.checkuser
    - essentials.clearinventory
    - essentials.clearinventory.others
    - essentials.geoip
    - essentials.geoip.*
    - essentials.geoip.shop
    - treasurechest.access.unlimited
    - treasurechest.access.treasure
    - treasurechest.access
    - treasurechest.peek
    - treasurechest.rank.*
    - treasurechest.unlimited
    - treasurechest.delete
    - treasurechest.set
    - treasurechest.random
    - treasurechest.list.*
    - treasurechest.list
    - treasurechest.forget.*
    - treasurechest.forget
    - treasurechest.count
    - treasurechest.access.*
    - treasurechest.access
    - treasurechest.count.others
    - treasurechest.ignoreprotection
    - treasurechest.admin
    - essentials.joinfullserver
    - cc.update
    - cc.*
    - codelock.bypass
    - plotme.limit.777
    - plotme.limit.*
    - plotme.*
    - plotme.admin.*
    - plotme.admin
    - plotme.unblock.*
    - nametags.color.gold
    - essentials.whois
    - permissions.manage
    - permissions.manage.users
    - permissions.manage.groups.list
    - lwc.mod
    - StaffAuth.GetIP
    - SecretSwitch.create
    inheritance:
    - TESTER
  Admin:
    prefix: '&4&l[&c&kXX&r&4 @ &c&kXX&4&l] &4&l'
    permissions:
    - myoc.list
    - cyom.commands.menu.script
    - cyom.commands.menu
    - -hb-ai.*
    - islandworld.bypass.island
    - stockmarket.admin.*
    - stockmarket.*
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - SlowDown.noslow
    - -essentials.gamemode.others
    - -essentials.nuke
    - -essentials.socialspy.*
    - -essentials.socialspy.others
    - -essentials.socialspy
    - selectivecolorchat.priority.13
    - bukkit.command.say
    - essentials.say
    - essentials.sethome.multiple.unlimited
    - mscBoredAdmin.snail
    - adminmenu.use
    - essentials.give.*
    - essentials.give
    - essentials.joinfullserver
    - voxelsniper.litesniper
    - enchanter.enchant
    - -essentials.enchant
    - -essentials.enchant.*
    - -enchanter.*
    - -enchanter.dirty
    - -enchanter.reload
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.op
    - -bukkit.command.deop
    - -bukkit.command.vanish
    - -essentials.vanish
    - -essentials.vanish.*
    - treasurechest.admin
    - treasurechest.rank.parkour3sms
    - treasurechest.rank.parkour3
    - admincontrol.pn
    - admincontrol.adminoff
    - admincontrol.adminduty
    - admintoolbox.open
    - mscBoredAdmin.freeze
    - mscBoredAdmin.infest
    - mscBoredAdmin.getlost
    - mscBoredAdmin.slap
    - mscBoredAdmin.fakeban
    - mscBoredAdmin.fakeleave
    - mscBoredAdmin.fakejoin
    - mscBoredAdmin.fakedeop
    - mscBoredAdmin.fakegm
    - mscBoredAdmin.fakeweather
    - mscBoredAdmin.strike
    - mscBoredAdmin.ignite
    - mscBoredAdmin.scare
    - mscBoredAdmin.blowup
    - mscBoredAdmin.rocket
    - mscBoredAdmin.bored
    - itemizer
    - itemizer.*
    - mv.bypass.gamemode.*
    - plotme.*
    - plotme.admin
    - plotme.admin.*
    - nametags.color.red
    - essentials.sethome.multiple.staff
    - sc.coloredsigns
    - sc.magic
    - hb-ai.help
    - hb-ai.position
    - worldedit
    - worldedit.*
    - worldguard.*
    - worldguard
    - authme.admin.*
    - heads
    - heads.*
    - usb.*
    - usb
    - tchest.*
    - tchest
    - ChestShop.admin
    - ChestShop.*
    - essentials.bigtree
    - essentials.break
    - essentials.bedrock
    - essentials.endhant
    - essentials.exp
    - essentials.exp.give
    - essentials.exp.give.others
    - essentials.exp.others
    - essentials.exp.set
    - essentials.exp.set.others
    - essentials.feed
    - essentials.feed.*
    - essentials.firework
    - essentials.firework.*
    - essentials.fly
    - essentials.fly.*
    - essentials.gamemode
    - essentials.gamemode.*
    - essentials.item
    - essentials.repair
    - essentials.repair.*
    - essentials.speed
    - essentials.speed.*
    - essentials.time
    - essentials.time.*
    - essentials.tree
    - essentials.unlimited.*
    - essentials.workbench
    - essentials.balance
    - plotme.*
    - multiverse.teleport.other.*
    - treasurechest.rank.admin
    inheritance:
    - CheckUser
  HeadAdmin:
    prefix: '&4&l[&c&kXX&r&4 H@ &c&kXX&4&l] &4&l'
    permissions:
    - simpletowns.reload
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - SlowDown.status
    - -essentials.nuke
    - -essentials.socialspy.*
    - -essentials.socialspy.others
    - -essentials.socialspy
    - ebank.admin
    - ExpBank.create
    - selectivecolorchat.priority.14
    - lobby.set
    - essentials.sethome.multiple.unlimited
    - xauth.*
    - logit.admin
    - logit.*
    - essentials.joinfullserver
    - voxelsniper.punish
    - voxelsniper.sniper
    - VoxelSniper.*
    - Voxel.*
    - enchanter.*
    - -bukkit.command.socialspy
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - bukkit.command.whitelist.enable
    - bukkit.command.whitelist.disable
    - bukkit.command.whitelist.add
    - bukkit.command.whitelist.remove
    - bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - bukkit.command.time.set
    - bukkit.command.time.add
    - -bukkit.command.gamemode
    - -bukkit.command.xp
    - bukkit.command.list
    - bukkit.command.me
    - bukkit.command.say
    - bukkit.command.toggledownfall
    - -bukkit.command.difficulty
    - -bukkit.command.vanish
    - -essentials.vanish
    - -essentials.vanish.*
    - automessage.commands.*
    - admincontrol.chaton
    - admincontrol.chatoff
    - admincontrol.werbung
    - mscBoredAdmin
    - treasurechest.rank.headadmin
    - essentials.setjail
    - essentials.deljail
    - authme.admin.*
    - authme.admin
    - authme.*
    - nametags.color.red
    - essentials.sethome.multiple.staff
    - hb-ai
    - hb-ai.*
    - noswear.ignore
    - noswear.admin
    - noswear.caps
    - BeHerobrine
    - BeHerobrine.*
    - lwc.admin
    - lwc.*
    - lp.*
    - essentials.god
    - essentials.god.*
    - essentials.eco
    - essentials.eco.*
    - essentials.mail.*
    - essentials.nick
    - essentials.nick.*
    - essentials.jail.exempt
    - multiverse.core.create
    - multiverse.core.import
    - multiverse.core.spawn.set
    - multiverse.core.coord
    - multiverse.core.remove
    - multiverse.core.delete
    - multiverse.core.confirm
    - multiverse.core.purge
    - multiverse.core.modify
    - multiverse.core.gamerule.set
    - multiverse.core.list.environments
    - multiverse.core.silent
    - multiverse.portal.fill
    - otherdrops.admin.reloadconfig
    - bukkit.command.whitelist.add
    - bukkit.command.whitelist.remove
    - bukkit.command.whitelist.list
    - enchanter.*
    inheritance:
    - Admin
  YouTuber:
    inheritance:
    - GraczPlus
    prefix: '[&f&l&kXX &r&f&lYou&6&lTuber &6&l&kXX&r&6&l]&7 '
    permissions:
    - treasurechest.rank.youtuber
    - essentials.repair.*
    - essentials.repair
    - essentials.tpa.*
    - essentials.tpa
    - essentials.tpaccept
    - essentials.feed.*
    - essentials.feed
    - essentials.heal.*
    - essentials.heal
    - essentials.nick
    - essentials.fly
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
  Sponsor:
    prefix: '&5&l[&5&l&kXX &r&5&lSponsor &5&l&kXX] &5&l'
    permissions:
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - -treasurechest.count.others
    - -treasurechest.delete
    - -treasurechest.forget
    - -treasurechest.forget.others
    - -treasurechest.forget.all
    - -treasurechest.ignoreprotection
    - -treasurechest.list.all
    - -treasurechest.random
    - -treasurechest.reload
    - -treasurechest.set
    - -treasurechest.unlimited
    - treasurechest.rank.youtuber
    - essentials.nick
    - mineresetlite.mine.reset
    - mineresetlite.mine.info
    - mineresetlite.mine.list
    - essentials.enderchest
    - essentials.repair.*
    - essentials.repair
    - essentials.broadcast
    - essentials.compass.*
    - essentials.compass
    - essentials.god
    - essentials.back
    - essentialsk.time.*
    - essentialsk.weather.*
    - essentialsk.time.set
    - worldedit.*
    - essentials.gamemode.*
    - essentials.gamemode
    - bukkit.command.gamemode
    - -essentials.whois
    - selectivecolorchat.priority.9
    - bm.kick
    - essentials.fly
    - bm.bminfo
    - bm.exempt.kick
    inheritance:
    - AVIP
    - YouTuber
  MasterAdmin:
    prefix: '&4&l[&0&kX&f&kX&4&l Master Admin &f&kX&0&kX&4&l] &4&l'
    permissions:
    - essentials.*
    - bm.*
    - selectivecolorchat.priority.15
    - essentials.joinfullserver
    - essentials.joinfullserwer
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.gamemode
    - multiverse.bypass.*
    - multiverse.bypass
    - multiverse.*
    - multiverse
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -bukkit.command.whitelist.enable
    - -bukkit.command.whitelist.disable
    - -bukkit.command.whitelist.add
    - -bukkit.command.whitelist.remove
    - -bukkit.command.whitelist.reload
    - -bukkit.command.seed
    - -bukkit.command.spawnpoint
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - -azrank.*
    - -azrank.setrank
    - -azrank.setrank.*
    - -azrank.reload
    - -azrank.info
    - -azrank.list
    - -azrank.restore
    - SlowDown.noslow
    - -essentials.gamemode.others
    - -essentials.nuke
    - -essentials.socialspy.*
    - -essentials.socialspy.others
    - -essentials.socialspy
    - -permissions.*
    inheritance:
    - HeadAdmin
  CoOwner:
    prefix: '&4&l[&5&kXX&4&l WspolWlasciciel &5&kXX&4&l] &4&l'
    permissions:
    - '*'
    - simpletowns.debug
    - simpletowns.log
    - selectivecolorchat.priority.15
    - essentials.joinfullserver
    - essentials.joinfullserwer
    - -bukkit.command.socialspy
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.stop
    - -bukkit.command.save.perform
    - -bukkit.command.save.disable
    - -bukkit.command.save.enable
    - -essentials.nuke
    - -essentials.socialspy.*
    - -essentials.socialspy.others
    - -essentials.socialspy
    - -essentials.op
    - -essentials.deop
    - -bukkit.command.gamerule
    - -bukkit.command.defaultgamemode
    - -bukkit.command.difficulty
    - treasurechest.rank.zestawadmina
    - '*'
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.gamemode
    - multiverse.bypass.*
    - multiverse.bypass
    - multiverse.*
    - multiverse
    - treasurechest.rank.owner
    - playercontroller
    - -permissions.*
    inheritance:
    - MasterAdmin
  Opiekun:
    prefix: '&4&l[&e&kXX&4&l Opiekun Serwera &e&kXX&4&l] &n&l'
    permissions:
    - '*'
    - simpletowns.debug
    - simpletowns.log
    - selectivecolorchat.priority.15
    - essentials.joinfullserver
    - essentials.joinfullserwer
    - bukkit.command.op.give
    - bukkit.command.op.take
    - bukkit.command.op
    - bukkit.command.deop
    - essentials.op
    - essentials.deop
    - treasurechest.rank.zestawadmina
    - '*'
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.gamemode
    - multiverse.bypass.*
    - multiverse.bypass
    - multiverse.*
    - multiverse
    - treasurechest.rank.owner
    - playercontroller
    - permissions.*
    inheritance:
    - CoOwner
  OWNER:
    prefix: '&4&l[&b&kXX&4&l Wlasciciel Serwera &b&kXX&4&l] &4&l'
    permissions:
    - '*'
    - simpletowns.debug
    - simpletowns.log
    - selectivecolorchat.priority.15
    - essentials.joinfullserver
    - essentials.joinfullserwer
    - bukkit.command.op.give
    - bukkit.command.op.take
    - bukkit.command.op
    - bukkit.command.deop
    - essentials.op
    - essentials.deop
    - treasurechest.rank.zestawadmina
    - '*'
    - multiverse.bypass.gamemode.*
    - multiverse.bypass.gamemode
    - multiverse.bypass.*
    - multiverse.bypass
    - multiverse.*
    - multiverse
    - treasurechest.rank.owner
    - playercontroller
    inheritance:
    - Opiekun
  TESTER:
    prefix: '&6&l[&1&kXX&r&6 TESTER &1&kXX&6&l] &6&l'
    inheritance:
    - Moderator
users:
  (NICK OWNERA):
    permissions:
    - '*'
    group:
    - OWNER

 

 

 

W miejsciu (NICK OWNERA) wpisz swój nick w minecrafcie. Będziedz mógł dać sobie rangę nawet, gdy Opiekun Serwera ci zabierze (tylko owner i opiekun może dawać rangi i opa).

 

Krótka instrukcja PEXa:

 

A. Lista grup:

/pex groups

B. Zmiana rangi:

/pex user <nick> group set <grupa>

W polu grupa wpisz jedną z grup widocznych na liście po /pex groups

C. Sprawdzanie członków grupy

/pex group <grupa> users

D. Nadawanie nowych uprawnień

Dla grupy: /pex group <grupa> add <perm>
Dla użytkownika: /pex user <nick> add <perm>

Przykład: /pex group Gracz add essentials.suicide

Możesz dać wszystkie permy od czegoś, np. essentials tak: /pex group Gracz add essenitlas.*

Lub wszytskie permy do wszystkich pluginó: /pex group Gracz add *

NIE ZALECANE!!! - TYLKO DLA OWNERA

E. Zabieranie uprawnień

Tak samo jak dodawanie tylko remove zamiast add.

 /pex group <grupa> remove <perm>

Przy graczu zamiast group wstaw user.

F. Przeglądanie uprawnień

Dla grupy: /pex group <grupa>
Dla usera: /pex user <nick>

Na screenie gry może się to nie zmieścić. Dlatego radzę to robić w konsolce lub najlepiej w pliku (notepadem ++ rzecz jasna).

G. Permy odmowy

Możesz dać perm odmowy. Np. grupa gracz ma dostęp do polecenia /suicide, jednak chcesz, żeby gracz o nicku ABC tego nie miał.
Co robisz?

Wpisujesz to:

/pex user ABC add -essenitlas.suicide

czyli

/pex user <nick> add -<perm>

Ważny jest ten znak -.

Oczywiście tak samo można zrobić z grupą. Żeby skasować perm odmowy analogicznie add zamienia się na remove (co dla niektrych może być nie logiczne).

H. Tworzenie i kasowanie grup:

Tworzenie: /pex group <grupa> create
Kasowanie: /pex group <grupa> delete

I. Dziedziczenie uprawnień (tylko GRUPY, nie możliwe przy graczach):

Dodaj dziedziczenie permów z grupy A do grupy B (czyli grupa B ma dostęp dodatkowo do wszystkiego do czego ma grupa A).

UWAGA!!! Permy odmowy nie są dziedziczone!

/pex group B parents add A

/pex group <grupa> parenst add <grupa Z KTÓREJ permy będą dziedziczone>

Kasowanie dziedziczenia to analogicznie parenst remove.

Aby skasować wszystkie dziedziczenia i zastąpić je jednym to: /pex group <grupa> parents set <grupa z której permy będą dziedziczone>


W /pex groups obok nazw grup w znakach [ ] są napisane grupy, z których dana grupa dziedziczy uprawnienia.

TWÓJ SERWER JEST GOTOWY. Uruchom go i graj na nim.

 

Pluginy, które jeszcze polecam to:

01. FastCraft - craftowanie bez znajomości receptur
02. SlowDown (download: http://www.mpcforum.pl/topic/1118568-dl-plugin-slowdown-prosty-plugin-do-zarzadzania-czatem/)
03. AutoMessage
04. ColoredTags - rangi nad nickiem i na TAB.
05. PlayerController (CHYBA już skasowan y z bukkita) - można to robić poleceniem /sudo z essentials oraz /mycmd-runas player z MyCommands.
06. Factions, Factions Chat(wszystkie wymagają pluginu MCore)
07. HerobrineAI
08. Citizenis
09. OtherDrops (drop ze stone, ale trzeba umieć ustawić)
10. TreasureChest (kity i darmowe itemy ze skrzyń. UWAGA!!! Nad skrzynią tchesta, żeby działała nie może nic się znajdować, żadna tabliczka).
11. MineResetLite (kopalnie)
12. PlotMe (działki)
13. IslandWorld - trudna konfiuracja, tut tutaj (nie mój): http://www.mpcforum.pl/topic/848284-98-pl-islandworld-plugin-na-skyblock/
14. ClearLag - anty lag (ewentualnie dużo gorszy - LagProtect)
15. AutoLogin - autlogowanie graczy premium, dostępny na MPCForum autorstwa użytkownika: Karolina_666
16. mscBoredAdmin - trollowanie i wygłupy - super dla znudzonego admina 
17. OPLimit - jeżeli jakiegoś polecenia nie można zablokować permami, osobiście nie jestem zwolennikiem tego pluginu, ale czasem jest potrzebny.


PLUGINY PRZY KTÓRYCH NIE PODAŁEM LINKU DO DOWLNOADU SĄ DOSTĘPNE NA STRONIE: bukkit.org  W ZAKŁADCE "GET PLUGINS".

O konfiguracji tych pluginów poszukajcie w necie.

Osobiście używam wszystkich tych pluginów.

Instrukcję Multiverse-Core wyguglaj. Jeżeli nie umiesz to wejdź tutaj:

http://pl.lmgtfy.com/?q=MineCraft+Multiverse-Core+Jak+u%C5%BCywa%C4%87%3F

Jeżeli szukasz hostingu to bardzo polecam:

pukawka.pl - oferta serwerów minecraft pukawki na stronie maxcraft.pl
Posiada on nieograniczoną ilość RAM (w ofercie MAX), więc można wgrywać dużo pluginów.

Daj +, pracowałem nad tym 1.5 godziny (nie wliczam korekt i rozwinięć).

 

Mam nadzieję, że pomogłem.

 

 

Tutorial będę co jakiś czas uaktualniał (jeżeli będzie taka potrzeba).

"Los nagradza przygotowanych"

 

(Liberator 2)

Opublikowano

Całkiem przyzwoicie, ale mógłbyś dać troszkę kolorków, np tak:

 

 

 

01. Pobierzmy silnik craftbukkit i tworzymy plik startowy


A. Download:

Spoiler

 

B. Plik Startowy

Spoiler

 

02. Uruchom plik startowy, poczekaj, aż w konsoli linijka zawierająca coś takiego:

 

Done (tutaj jakiś czas)!

Następnie wyłącz serwer.

UWAGA!!!

Serwera nie wolno wyłączać zamykając okno konsoli.

Należy wydać polecnie:

W konsoli: stop

Lub w grze: /stop

 

03. Plik server.properties

 

Spoiler
[...]

 

04. Plik bukkit.yml

Opublikowano

Straaasznie pomocny tutorial, nie ma błędów ortograficznych i widać "dużo napracowania" :)

Strzelam lajka!

Opublikowano

Całkiem przyzwoicie, ale mógłbyś dać troszkę kolorków, np tak:

 

Poprawię to.

Mam zamiar dodać też instrukcję obsługi niektórych pluginów (m.in. plotme, IslandWorld i multiverse-core) oraz dodać pluginy te z polecam też... do instrukcji wgrywania.

Wszystko zrozumiałe?

"Los nagradza przygotowanych"

 

(Liberator 2)

  • 3 miesiące temu...
Opublikowano

F5

 

ChangeLog:

 

Drobne korekty oraz zmiana listy polecanych pluginów (2 wyleciały, jeden został zastąpiony innym i 4 doszły).

 

 

Planowane poprawki:

 

Kolorki i instrukcje obsługi kilku z pluginów, które polecam.

 

"Los nagradza przygotowanych"

 

(Liberator 2)

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...